home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Popular Request
/
By Popular Request (Arsenal Computer)(SysOptics Distribution System).ISO
/
amiga3
/
nwgccstr.lha
/
source.lha
/
stubs
/
_malloc.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-03-13
|
339b
|
14 lines
#include <exec/nodes.h>
#include <exec/lists.h>
extern void __freeall(void); /* Funktion zum l÷schen des allozierten Speichers */
static void (*a)(void)=&__freeall;
struct MinList __memorylist= /* Liste des belegten Speichers (leer) */
{
(struct MinNode *)&__memorylist.mlh_Tail,
NULL,
(struct MinNode *)&__memorylist.mlh_Head
};